Mint self burn adapter - #1573
Closed
AlexanderLiteplo wants to merge 3 commits into
Closed
Conversation
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add Generic Mint-Self-Burn OFT Adapter for Audit
Overview
This PR introduces a generic OFT adapter implementation designed for tokens with a specific burn pattern, created to be audit-ready without any project-specific references.
What's Added
New Contracts:
IMintSelfBurnToken.sol- Interface for tokens with mint and self-burn functionalityMintSelfBurnToken.sol- Generic ERC20 implementation with access-controlled mint/burnMintSelfBurnOFTAdapter.sol- OFT adapter for self-burn pattern tokensKey Technical Feature: Self-Burn Pattern
This adapter is designed for tokens where the burn function has a specific signature:
This is different from typical burnable tokens that might allow
burnFrom(address, amount)with approval.How It Works
File Organization
Files placed in standard LayerZero package structure:
packages/oft-evm/contracts/interfaces/IMintSelfBurnToken.solpackages/oft-evm/contracts/MintSelfBurnToken.sol&MintSelfBurnOFTAdapter.solUsage
Any token implementing
IMintSelfBurnTokencan use this adapter. The adapter requires MINTER_ROLE and BURNER_ROLE permissions on the token contract.This adapter pattern is particularly useful for projects that need cross-chain functionality with tokens that have self-burn semantics rather than delegated burning patterns.